crypto/tls.clientHandshakeState.serverHello (field)

22 uses

	crypto/tls (current package)
		handshake_client.go#L34: 	serverHello  *serverHelloMsg
		handshake_client.go#L345: 		serverHello: serverHello,
		handshake_client.go#L544: 	if hs.session == nil && hs.hello.sessionId != nil && bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_client.go#L567: 	if err := transcriptMsg(hs.serverHello, &hs.finishedHash); err != nil {
		handshake_client.go#L624: 	c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
		handshake_client.go#L631: 	if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
		handshake_client.go#L672: 		if !hs.serverHello.ocspStapling {
		handshake_client.go#L712: 		err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
		handshake_client.go#L774: 	if hs.serverHello.extendedMasterSecret {
		handshake_client.go#L787: 			hs.hello.random, hs.serverHello.random)
		handshake_client.go#L860: 		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
		handshake_client.go#L882: 		bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
		handshake_client.go#L892: 	if hs.serverHello.compressionMethod != compressionNone {
		handshake_client.go#L899: 	for _, format := range hs.serverHello.supportedPoints {
		handshake_client.go#L910: 	if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
		handshake_client.go#L912: 		if len(hs.serverHello.secureRenegotiation) != 0 {
		handshake_client.go#L922: 		if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
		handshake_client.go#L928: 	if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
		handshake_client.go#L932: 	c.clientProtocol = hs.serverHello.alpnProtocol
		handshake_client.go#L934: 	c.scts = hs.serverHello.scts
		handshake_client.go#L951: 	if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
		handshake_client.go#L1029: 	if !hs.serverHello.ticketSupported {